]> git.saurik.com Git - apple/security.git/blob - Keychain Circle Notification/KNAppDelegate.h
Security-55471.14.tar.gz
[apple/security.git] / Keychain Circle Notification / KNAppDelegate.h
1 //
2 // KNAppDelegate.h
3 // Keychain Circle Notification
4 //
5 // Created by J Osborne on 2/21/13.
6 //
7 //
8
9 #import <Cocoa/Cocoa.h>
10 #import <Foundation/NSUserNotification_Private.h>
11 #import "KNPersistantState.h"
12
13 @class KDSecCircle;
14
15 @interface KNAppDelegate : NSObject <NSApplicationDelegate, _NSUserNotificationCenterDelegatePrivate>
16
17 @property (assign) IBOutlet NSWindow *window;
18 @property (retain) KDSecCircle *circle;
19 @property (retain) NSMutableSet *viewedIds;
20 @property (retain) KNPersistantState *state;
21
22 @end